typedef cairo_rectangle_int_t GdkRectangle;
#endif
+typedef struct _GdkBorder GdkBorder;
+
+/**
+ * GdkBorder:
+ * @left: The width of the left border
+ * @right: The width of the right border
+ * @top: The width of the top border
+ * @bottom: The width of the bottom border
+ *
+ * A struct that specifies a border around a rectangular area
+ * that can be of different width on each side.
+ */
+struct _GdkBorder
+{
+ gint16 left;
+ gint16 right;
+ gint16 top;
+ gint16 bottom;
+};
+
/**
* GdkAtom:
*
G_BEGIN_DECLS
-typedef struct _GtkBorder GtkBorder;
-
#define GTK_TYPE_BORDER (gtk_border_get_type ())
/**
* A struct that specifies a border around a rectangular area
* that can be of different width on each side.
*/
-struct _GtkBorder
-{
- gint16 left;
- gint16 right;
- gint16 top;
- gint16 bottom;
-};
+typedef GdkBorder GtkBorder;
GDK_AVAILABLE_IN_ALL
GType gtk_border_get_type (void) G_GNUC_CONST;